From d7e7ef68594c45197932d4e960603a670657b809 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Thu, 25 Jun 2009 13:15:32 +0100 Subject: [PATCH] tools: fix inverted logic check Signed-off-by: Christoph Egger --- tools/python/xen/xend/XendConfig.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py index 398e73e78e..9cced961a8 100644 --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -463,9 +463,11 @@ class XendConfig(dict): if 'device_model' not in self['platform']: self['platform']['device_model'] = auxbin.pathTo("qemu-dm") # device_model may be set to 'qemu-dm' or 'stubdom-dm' w/o a path - if os.path.dirname(self['platform']['device_model']) != "": + if os.path.dirname(self['platform']['device_model']) == "": self['platform']['device_model'] = \ auxbin.pathTo(self['platform']['device_model']) + if not os.path.exists(self['platform']['device_model']): + raise VmError("device model '%s' not found" % str(self['platform']['device_model'])) if self.is_hvm(): if 'timer_mode' not in self['platform']: -- 2.30.2